projects
/
pyside6.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
69ba0a3
)
Fix python module paths in CMake
author
Stuart Prescott
<stuart@debian.org>
Mon, 17 Feb 2025 13:50:57 +0000
(
00:50
+1100)
committer
Stuart Prescott
<stuart@debian.org>
Tue, 23 Sep 2025 00:19:51 +0000
(10:19 +1000)
Gbp-Pq: Name 0010-Fix-python-module-paths-in-CMake.patch
sources/shiboken6/cmake/ShibokenHelpers.cmake
patch
|
blob
|
history
diff --git
a/sources/shiboken6/cmake/ShibokenHelpers.cmake
b/sources/shiboken6/cmake/ShibokenHelpers.cmake
index bcaf31e89ee1821fd6c65a27e54b65e8edb29014..461ad19f8ff856badf2cf1ba8e03a147456c4200 100644
(file)
--- a/
sources/shiboken6/cmake/ShibokenHelpers.cmake
+++ b/
sources/shiboken6/cmake/ShibokenHelpers.cmake
@@
-125,13
+125,13
@@
macro(shiboken_internal_set_python_site_packages)
if sys.platform == 'win32':
lib_path = sysconfig.get_path('purelib')
else:
- lib_path = sysconfig.get_path('purelib', scheme='
posix_prefix
')
+ lib_path = sysconfig.get_path('purelib', scheme='
deb_system
')
# /home/qt/dev/env
if sys.platform == 'win32':
data_path = sysconfig.get_path('data')
else:
- data_path = sysconfig.get_path('data', scheme='
posix_prefix
')
+ data_path = sysconfig.get_path('data', scheme='
deb_system
')
# /lib/python3.9/site-packages
rel_path = lib_path.replace(data_path, '')